home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / Tickle-4.0 (tcl) / library / help / tcl / lists / concat next >
Encoding:
Text File  |  1993-10-26  |  548 b   |  22 lines  |  [TEXT/$Tcl]

  1.  
  2.           concat arg ?arg ...?
  3.  
  4.  
  5.      DESCRIPTION
  6.           This command treats each argument as a list and concatenates
  7.           them  into  a  single  list.  It also eliminates leading and
  8.           trailing spaces in the arg's and  adds  a  single  separator
  9.           space  between  arg's.   It permits any number of arguments.
  10.           For example, the command
  11.  
  12.                concat a b {c d e} {f {g h}}
  13.  
  14.           will return
  15.  
  16.                a b c d e f {g h}
  17.           as its result.
  18.  
  19.  
  20.      KEYWORDS
  21.           concatenate, join, lists
  22.